home *** CD-ROM | disk | FTP | other *** search
/ Sounds Terrific 2 / Sounds Terrific II (1996)(Weird Science)(Disc 1 of 2)[Amiga-PC].iso / archives / amiga / amisox33.lha / AmiSOX3.3 / dist / g72x.c < prev    next >
C/C++ Source or Header  |  1994-01-23  |  15KB  |  566 lines

  1. /*
  2.  * This source code is a product of Sun Microsystems, Inc. and is provided
  3.  * for unrestricted use.  Users may copy or modify this source code without
  4.  * charge.
  5.  *
  6.  * SUN SOURCE CODE IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING
  7.  * THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  8.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  9.  *
  10.  * Sun source code is provided with no support and without any obligation on
  11.  * the part of Sun Microsystems, Inc. to assist in its use, correction,
  12.  * modification or enhancement.
  13.  *
  14.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  15.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS SOFTWARE
  16.  * OR ANY PART THEREOF.
  17.  *
  18.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  19.  * or profits or other special, indirect and consequential damages, even if
  20.  * Sun has been advised of the possibility of such damages.
  21.  *
  22.  * Sun Microsystems, Inc.
  23.  * 2550 Garcia Avenue
  24.  * Mountain View, California  94043
  25.  */
  26.  
  27. /*
  28.  * g72x.c
  29.  *
  30.  * Common routines for G.721 and G.723 conversions.
  31.  */
  32.  
  33. #include "st.h"
  34. #include "g72x.h"
  35.  
  36. static short power2[15] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80,
  37.             0x100, 0x200, 0x400, 0x800, 0x1000, 0x2000, 0x4000};
  38.  
  39. /*
  40.  * quan()
  41.  *
  42.  * quantizes the input val against the table of size short integers.
  43.  * It returns i if table[i - 1] <= val < table[i].
  44.  *
  45.  * Using linear search for simple coding.
  46.  */
  47. static int
  48. quan(val,table,size)
  49.     int        val;
  50.     short        *table;
  51.     int        size;
  52. {
  53.     int        i;
  54.  
  55.     for (i = 0; i < size; i++)
  56.         if (val < *table++)
  57.             break;
  58.     return (i);
  59. }
  60.  
  61. /*
  62.  * fmult()
  63.  *
  64.  * returns the integer product of the 14-bit integer "an" and
  65.  * "floating point" representation (4-bit exponent, 6-bit mantessa) "srn".
  66.  */
  67. static int
  68. fmult(an, srn)
  69.     int        an;
  70.     int        srn;
  71. {
  72.     short        anmag, anexp, anmant;
  73.     short        wanexp, wanmag, wanmant;
  74.     short        retval;
  75.  
  76.     anmag = (an > 0) ? an : ((-an) & 0x1FFF);
  77.     anexp = quan(anmag, power2, 15) - 6;
  78.     anmant = (anmag == 0) ? 32 :
  79.         (anexp >= 0) ? anmag >> anexp : anmag << -anexp;
  80.     wanexp = anexp + ((srn >> 6) & 0xF) - 13;
  81.  
  82.     wanmant = (anmant * (srn & 077) + 0x30) >> 4;
  83.     retval = (wanexp >= 0) ? ((wanmant << wanexp) & 0x7FFF) :
  84.         (wanmant >> -wanexp);
  85.  
  86.     return (((an ^ srn) < 0) ? -retval : retval);
  87. }
  88.  
  89. /*
  90.  * g72x_init_state()
  91.  *
  92.  * This routine initializes and/or resets the g72x_state structure
  93.  * pointed to by 'state_ptr'.
  94.  * All the initial state values are specified in the CCITT G.721 document.
  95.  */
  96. void
  97. g72x_init_state(state_ptr)
  98.     struct g72x_state *state_ptr;
  99. {
  100.     int        cnta;
  101.  
  102.     state_ptr->yl = 34816;
  103.     state_ptr->yu = 544;
  104.     state_ptr->dms = 0;
  105.     state_ptr->dml = 0;
  106.     state_ptr->ap = 0;
  107.     for (cnta = 0; cnta < 2; cnta++) {
  108.         state_ptr->a[cnta] = 0;
  109.         state_ptr->pk[cnta] = 0;
  110.         state_ptr->sr[cnta] = 32;
  111.     }
  112.     for (cnta = 0; cnta < 6; cnta++) {
  113.         state_ptr->b[cnta] = 0;
  114.         state_ptr->dq[cnta] = 32;
  115.     }
  116.     state_ptr->td = 0;
  117. }
  118.  
  119. /*
  120.  * predictor_zero()
  121.  *
  122.  * computes the estimated signal from 6-zero predictor.
  123.  *
  124.  */
  125. int
  126. predictor_zero(state_ptr)
  127.     struct g72x_state *state_ptr;
  128. {
  129.     int        i;
  130.     int        sezi;
  131.  
  132.     sezi = fmult(state_ptr->b[0] >> 2, state_ptr->dq[0]);
  133.     for (i = 1; i < 6; i++)            /* ACCUM */
  134.         sezi += fmult(state_ptr->b[i] >> 2, state_ptr->dq[i]);
  135.     return (sezi);
  136. }
  137. /*
  138.  * predictor_pole()
  139.  *
  140.  * computes the estimated signal from 2-pole predictor.
  141.  *
  142.  */
  143. int
  144. predictor_pole(state_ptr)
  145.     struct g72x_state *state_ptr;
  146. {
  147.     return (fmult(state_ptr->a[1] >> 2, state_ptr->sr[1]) +
  148.         fmult(state_ptr->a[0] >> 2, state_ptr->sr[0]));
  149. }
  150. /*
  151.  * step_size()
  152.  *
  153.  * computes the quantization step size of the adaptive quantizer.
  154.  *
  155.  */
  156. int
  157. step_size(state_ptr)
  158.     struct g72x_state *state_ptr;
  159. {
  160.     int        y;
  161.     int        dif;
  162.     int        al;
  163.  
  164.     if (state_ptr->ap >= 256)
  165.         return (state_ptr->yu);
  166.     else {
  167.         y = state_ptr->yl >> 6;
  168.         dif = state_ptr->yu - y;
  169.         al = state_ptr->ap >> 2;
  170.         if (dif > 0)
  171.             y += (dif * al) >> 6;
  172.         else if (dif < 0)
  173.             y += (dif * al + 0x3F) >> 6;
  174.         return (y);
  175.     }
  176. }
  177.  
  178. /*
  179.  * quantize()
  180.  *
  181.  * Given a raw sample, 'd', of the difference signal and a
  182.  * quantization step size scale factor, 'y', this routine returns the
  183.  * ADPCM codeword to which that sample gets quantized.  The step
  184.  * size scale factor division operation is done in the log base 2 domain
  185.  * as a subtraction.
  186.  */
  187. int
  188. quantize(d, y,table,size)
  189.     int        d;    /* Raw difference signal sample */
  190.     int        y;    /* Step size multiplier */
  191.     short        *table;    /* quantization table */
  192.     int        size;    /* table size of short integers */
  193. {
  194.     short        dqm;    /* Magnitude of 'd' */
  195.     short        exp;    /* Integer part of base 2 log of 'd' */
  196.     short        mant;    /* Fractional part of base 2 log */
  197.     short        dl;    /* Log of magnitude of 'd' */
  198.     short        dln;    /* Step size scale factor normalized log */
  199.     int        i;
  200.  
  201.     /*
  202.      * LOG
  203.      *
  204.      * Compute base 2 log of 'd', and store in 'dl'.
  205.      */
  206.     dqm = abs(d);
  207.     exp = quan(dqm >> 1, power2, 15);
  208.     mant = ((dqm << 7) >> exp) & 0x7F;    /* Fractional portion. */
  209.     dl = (exp << 7) + mant;
  210.  
  211.     /*
  212.      * SUBTB
  213.      *
  214.      * "Divide" by step size multiplier.
  215.      */
  216.     dln = dl - (y >> 2);
  217.  
  218.     /*
  219.      * QUAN
  220.      *
  221.      * Obtain codword i for 'd'.
  222.      */
  223.     i = quan(dln, table, size);
  224.     if (d < 0)            /* take 1's complement of i */
  225.         return ((size << 1) + 1 - i);
  226.     else if (i == 0)        /* take 1's complement of 0 */
  227.         return ((size << 1) + 1); /* new in 1988 */
  228.     else
  229.         return (i);
  230. }
  231. /*
  232.  * reconstruct()
  233.  *
  234.  * Returns reconstructed difference signal 'dq' obtained from
  235.  * codeword 'i' and quantization step size scale factor 'y'.
  236.  * Multiplication is performed in log base 2 domain as addition.
  237.  */
  238. int
  239. reconstruct(sign, dqln, y)
  240.     int        sign;    /* 0 for non-negative value */
  241.     int        dqln;    /* G.72x codeword */
  242.     int        y;    /* Step size multiplier */
  243. {
  244.     short        dql;    /* Log of 'dq' magnitude */
  245.     short        dex;    /* Integer part of log */
  246.     short        dqt;
  247.     short        dq;    /* Reconstructed difference signal sample */
  248.  
  249.     dql = dqln + (y >> 2);    /* ADDA */
  250.  
  251.     if (dql < 0) {
  252.         return ((sign) ? -0x8000 : 0);
  253.     } else {        /* ANTILOG */
  254.         dex = (dql >> 7) & 15;
  255.         dqt = 128 + (dql & 127);
  256.         dq = (dqt << 7) >> (14 - dex);
  257.         return ((sign) ? (dq - 0x8000) : dq);
  258.     }
  259. }
  260.  
  261.  
  262. /*
  263.  * update()
  264.  *
  265.  * updates the state variables for each output code
  266.  */
  267. void
  268. update(code_size, y, wi, fi, dq, sr, dqsez, state_ptr)
  269.     int        code_size;    /* distinguish 723_40 with others */
  270.     int        y;        /* quantizer step size */
  271.     int        wi;        /* scale factor multiplier */
  272.     int        fi;        /* for long/short term energies */
  273.     int        dq;        /* quantized prediction difference */
  274.     int        sr;        /* reconstructed signal */
  275.     int        dqsez;        /* difference from 2-pole predictor */
  276.     struct g72x_state *state_ptr;    /* coder state pointer */
  277. {
  278.     int        cnt;
  279.     short        mag, exp, mant;    /* Adaptive predictor, FLOAT A */
  280.     short        a2p;        /* LIMC */
  281.     short        a1ul;        /* UPA1 */
  282.     short        ua2, pks1;    /* UPA2 */
  283.     short        uga2a, fa1;
  284.     short        uga2b;
  285.     char        tr;        /* tone/transition detector */
  286.     short        ylint, thr2, dqthr;
  287.     short          ylfrac, thr1;
  288.     short        pk0;
  289.  
  290.     pk0 = (dqsez < 0) ? 1 : 0;    /* needed in updating predictor poles */
  291.  
  292.     mag = dq & 0x7FFF;        /* prediction difference magnitude */
  293.     /* TRANS */
  294.     ylint = state_ptr->yl >> 15;    /* exponent part of yl */
  295.     ylfrac = (state_ptr->yl >> 10) & 0x1F;    /* fractional part of yl */
  296.     thr1 = (32 + ylfrac) << ylint;        /* threshold */
  297.     thr2 = (ylint > 9) ? 31 << 10 : thr1;    /* limit thr2 to 31 << 10 */
  298.     dqthr = (thr2 + (thr2 >> 1)) >> 1;    /* dqthr = 0.75 * thr2 */
  299.     if (state_ptr->td == 0)        /* signal supposed voice */
  300.         tr = 0;
  301.     else if (mag <= dqthr)        /* supposed data, but small mag */
  302.         tr = 0;            /* treated as voice */
  303.     else                /* signal is data (modem) */
  304.         tr = 1;
  305.  
  306.     /*
  307.      * Quantizer scale factor adaptation.
  308.      */
  309.  
  310.     /* FUNCTW & FILTD & DELAY */
  311.     /* update non-steady state step size multiplier */
  312.     state_ptr->yu = y + ((wi - y) >> 5);
  313.  
  314.     /* LIMB */
  315.     if (state_ptr->yu < 544)    /* 544 <= yu <= 5120 */
  316.         state_ptr->yu = 544;
  317.     else if (state_ptr->yu > 5120)
  318.         state_ptr->yu = 5120;
  319.  
  320.     /* FILTE & DELAY */
  321.     /* update steady state step size multiplier */
  322.     state_ptr->yl += state_ptr->yu + ((-state_ptr->yl) >> 6);
  323.  
  324.     /*
  325.      * Adaptive predictor coefficients.
  326.      */
  327.     if (tr == 1) {            /* reset a's and b's for modem signal */
  328.         state_ptr->a[0] = 0;
  329.         state_ptr->a[1] = 0;
  330.         state_ptr->b[0] = 0;
  331.         state_ptr->b[1] = 0;
  332.         state_ptr->b[2] = 0;
  333.         state_ptr->b[3] = 0;
  334.         state_ptr->b[4] = 0;
  335.         state_ptr->b[5] = 0;
  336.     } else {            /* update a's and b's */
  337.         pks1 = pk0 ^ state_ptr->pk[0];        /* UPA2 */
  338.  
  339.         /* update predictor pole a[1] */
  340.         a2p = state_ptr->a[1] - (state_ptr->a[1] >> 7);
  341.         if (dqsez != 0) {
  342.             fa1 = (pks1) ? state_ptr->a[0] : -state_ptr->a[0];
  343.             if (fa1 < -8191)    /* a2p = function of fa1 */
  344.                 a2p -= 0x100;
  345.             else if (fa1 > 8191)
  346.                 a2p += 0xFF;
  347.             else
  348.                 a2p += fa1 >> 5;
  349.  
  350.             if (pk0 ^ state_ptr->pk[1])
  351.                 /* LIMC */
  352.                 if (a2p <= -12160)
  353.                     a2p = -12288;
  354.                 else if (a2p >= 12416)
  355.                     a2p = 12288;
  356.                 else
  357.                     a2p -= 0x80;
  358.             else if (a2p <= -12416)
  359.                 a2p = -12288;
  360.             else if (a2p >= 12160)
  361.                 a2p = 12288;
  362.             else
  363.                 a2p += 0x80;
  364.         }
  365.  
  366.         /* TRIGB & DELAY */
  367.         state_ptr->a[1] = a2p;
  368.  
  369.         /* UPA1 */
  370.         /* update predictor pole a[0] */
  371.         state_ptr->a[0] -= state_ptr->a[0] >> 8;
  372.         if (dqsez != 0)
  373.             if (pks1 == 0)
  374.                 state_ptr->a[0] += 192;
  375.             else
  376.                 state_ptr->a[0] -= 192;
  377.  
  378.         /* LIMD */
  379.         a1ul = 15360 - a2p;
  380.         if (state_ptr->a[0] < -a1ul)
  381.             state_ptr->a[0] = -a1ul;
  382.         else if (state_ptr->a[0] > a1ul)
  383.             state_ptr->a[0] = a1ul;
  384.  
  385.         /* UPB : update predictor zeros b[6] */
  386.         for (cnt = 0; cnt < 6; cnt++) {
  387.             if (code_size == 5)        /* for 40Kbps G.723 */
  388.                 state_ptr->b[cnt] -= state_ptr->b[cnt] >> 9;
  389.             else            /* for G.721 and 24Kbps G.723 */
  390.                 state_ptr->b[cnt] -= state_ptr->b[cnt] >> 8;
  391.             if (dq & 0x7FFF) {            /* XOR */
  392.                 if ((dq ^ state_ptr->dq[cnt]) >= 0)
  393.                     state_ptr->b[cnt] += 128;
  394.                 else
  395.                     state_ptr->b[cnt] -= 128;
  396.             }
  397.         }
  398.     }
  399.  
  400.     for (cnt = 5; cnt > 0; cnt--)
  401.         state_ptr->dq[cnt] = state_ptr->dq[cnt-1];
  402.     /* FLOAT A : convert dq[0] to 4-bit exp, 6-bit mantissa f.p. */
  403.     if (mag == 0) {
  404.         state_ptr->dq[0] = (dq >= 0) ? 0x20 : 0xFC20;
  405.     } else {
  406.         exp = quan(mag, power2, 15);
  407.         state_ptr->dq[0] = (dq >= 0) ?
  408.             (exp << 6) + ((mag << 6) >> exp) :
  409.             (exp << 6) + ((mag << 6) >> exp) - 0x400;
  410.     }
  411.  
  412.     state_ptr->sr[1] = state_ptr->sr[0];
  413.     /* FLOAT B : convert sr to 4-bit exp., 6-bit mantissa f.p. */
  414.     if (sr == 0) {
  415.         state_ptr->sr[0] = 0x20;
  416.     } else if (sr > 0) {
  417.         exp = quan(sr, power2, 15);
  418.         state_ptr->sr[0] = (exp << 6) + ((sr << 6) >> exp);
  419.     } else if (sr > -32768) {
  420.         mag = -sr;
  421.         exp = quan(mag, power2, 15);
  422.         state_ptr->sr[0] =  (exp << 6) + ((mag << 6) >> exp) - 0x400;
  423.     } else
  424.         state_ptr->sr[0] = 0xFC20;
  425.  
  426.     /* DELAY A */
  427.     state_ptr->pk[1] = state_ptr->pk[0];
  428.     state_ptr->pk[0] = pk0;
  429.  
  430.     /* TONE */
  431.     if (tr == 1)        /* this sample has been treated as data */
  432.         state_ptr->td = 0;    /* next one will be treated as voice */
  433.     else if (a2p < -11776)    /* small sample-to-sample correlation */
  434.         state_ptr->td = 1;    /* signal may be data */
  435.     else                /* signal is voice */
  436.         state_ptr->td = 0;
  437.  
  438.     /*
  439.      * Adaptation speed control.
  440.      */
  441.     state_ptr->dms += (fi - state_ptr->dms) >> 5;        /* FILTA */
  442.     state_ptr->dml += (((fi << 2) - state_ptr->dml) >> 7);    /* FILTB */
  443.  
  444.     if (tr == 1)
  445.         state_ptr->ap = 256;
  446.     else if (y < 1536)                    /* SUBTC */
  447.         state_ptr->ap += (0x200 - state_ptr->ap) >> 4;
  448.     else if (state_ptr->td == 1)
  449.         state_ptr->ap += (0x200 - state_ptr->ap) >> 4;
  450.     else if (abs((state_ptr->dms << 2) - state_ptr->dml) >=
  451.         (state_ptr->dml >> 3))
  452.         state_ptr->ap += (0x200 - state_ptr->ap) >> 4;
  453.     else
  454.         state_ptr->ap += (-state_ptr->ap) >> 4;
  455. }
  456.  
  457. /*
  458.  * tandem_adjust(sr, se, y, i, sign)
  459.  *
  460.  * At the end of ADPCM decoding, it simulates an encoder which may be receiving
  461.  * the output of this decoder as a tandem process. If the output of the
  462.  * simulated encoder differs from the input to this decoder, the decoder output
  463.  * is adjusted by one level of A-law or u-law codes.
  464.  *
  465.  * Input:
  466.  *    sr    decoder output linear PCM sample,
  467.  *    se    predictor estimate sample,
  468.  *    y    quantizer step size,
  469.  *    i    decoder input code,
  470.  *    sign    sign bit of code i
  471.  *
  472.  * Return:
  473.  *    adjusted A-law or u-law compressed sample.
  474.  */
  475. int
  476. tandem_adjust_alaw(sr, se, y, i, sign, qtab)
  477.     int        sr;    /* decoder output linear PCM sample */
  478.     int        se;    /* predictor estimate sample */
  479.     int        y;    /* quantizer step size */
  480.     int        i;    /* decoder input code */
  481.     int        sign;
  482.     short        *qtab;
  483. {
  484.     unsigned char    sp;    /* A-law compressed 8-bit code */
  485.     short        dx;    /* prediction error */
  486.     char        id;    /* quantized prediction error */
  487.     int        sd;    /* adjusted A-law decoded sample value */
  488.     int        im;    /* biased magnitude of i */
  489.     int        imx;    /* biased magnitude of id */
  490.  
  491.     if (sr <= -32768)
  492.         sr = -1;
  493.     sp = linear2alaw((sr >> 1) << 3);    /* short to A-law compression */
  494.     dx = (alaw2linear(sp) >> 2) - se;    /* 16-bit prediction error */
  495.     id = quantize(dx, y, qtab, sign - 1);
  496.  
  497.     if (id == i) {            /* no adjustment on sp */
  498.         return (sp);
  499.     } else {            /* sp adjustment needed */
  500.         /* ADPCM codes : 8, 9, ... F, 0, 1, ... , 6, 7 */
  501.         im = i ^ sign;        /* 2's complement to biased unsigned */
  502.         imx = id ^ sign;
  503.  
  504.         if (imx > im) {        /* sp adjusted to next lower value */
  505.             if (sp & 0x80) {
  506.                 sd = (sp == 0xD5) ? 0x55 :
  507.                     ((sp ^ 0x55) - 1) ^ 0x55;
  508.             } else {
  509.                 sd = (sp == 0x2A) ? 0x2A :
  510.                     ((sp ^ 0x55) + 1) ^ 0x55;
  511.             }
  512.         } else {        /* sp adjusted to next higher value */
  513.             if (sp & 0x80)
  514.                 sd = (sp == 0xAA) ? 0xAA :
  515.                     ((sp ^ 0x55) + 1) ^ 0x55;
  516.             else
  517.                 sd = (sp == 0x55) ? 0xD5 :
  518.                     ((sp ^ 0x55) - 1) ^ 0x55;
  519.         }
  520.         return (sd);
  521.     }
  522. }
  523.  
  524. int
  525. tandem_adjust_ulaw(sr, se, y, i, sign, qtab)
  526.     int        sr;    /* decoder output linear PCM sample */
  527.     int        se;    /* predictor estimate sample */
  528.     int        y;    /* quantizer step size */
  529.     int        i;    /* decoder input code */
  530.     int        sign;
  531.     short        *qtab;
  532. {
  533.     unsigned char    sp;    /* u-law compressed 8-bit code */
  534.     short        dx;    /* prediction error */
  535.     char        id;    /* quantized prediction error */
  536.     int        sd;    /* adjusted u-law decoded sample value */
  537.     int        im;    /* biased magnitude of i */
  538.     int        imx;    /* biased magnitude of id */
  539.  
  540.     if (sr <= -32768)
  541.         sr = 0;
  542.     sp = linear2ulaw(sr << 2);    /* short to u-law compression */
  543.     dx = (ulaw2linear(sp) >> 2) - se;    /* 16-bit prediction error */
  544.     id = quantize(dx, y, qtab, sign - 1);
  545.     if (id == i) {
  546.         return (sp);
  547.     } else {
  548.         /* ADPCM codes : 8, 9, ... F, 0, 1, ... , 6, 7 */
  549.         im = i ^ sign;        /* 2's complement to biased unsigned */
  550.         imx = id ^ sign;
  551.         if (imx > im) {        /* sp adjusted to next lower value */
  552.             if (sp & 0x80)
  553.                 sd = (sp == 0xFF) ? 0x7E : sp + 1;
  554.             else
  555.                 sd = (sp == 0) ? 0 : sp - 1;
  556.  
  557.         } else {        /* sp adjusted to next higher value */
  558.             if (sp & 0x80)
  559.                 sd = (sp == 0x80) ? 0x80 : sp - 1;
  560.             else
  561.                 sd = (sp == 0x7F) ? 0xFE : sp + 1;
  562.         }
  563.         return (sd);
  564.     }
  565. }
  566.